home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / DesktopAnimPanel.idl < prev    next >
Text File  |  1996-05-01  |  1KB  |  51 lines

  1. /*
  2.      File:        DesktopAnimPanel.idl
  3.  
  4.      Contains:    Declarations for the SOM based Screen Saver/Desktop control panel object.
  5.  
  6.      Version:    Technology:    1/29/96    1/22/96    12/7/95    12/2/95    12/1/95    11/7/95    8/8/95    7/31/95    6/28/95 PanelItemHit. <7> <6> <5> <4> <3> <2> <1>
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1995-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16. */
  17.  
  18.  
  19. #ifndef __DESKTOPANIMPANEL_IDL__
  20. #define __DESKTOPANIMPANEL_IDL__
  21.  
  22. #include <DesktopAnimation.idl>
  23. #include <DesktopAnimBase.idl>
  24. #include <Displays.idl>
  25.  
  26. interface DesktopAnimPanel : DesktopAnimBase
  27. {
  28.     /* initialization/destruction */
  29.     OSStatus     Initialize(in AVIDType prefsDisplayID, in DesktopAnimModuleDescRef moduleDescRef,
  30.                         in DesktopAnimModuleInfo moduleInfo);
  31.     OSStatus    Close();
  32.  
  33. #ifdef __SOMIDL__
  34. implementation
  35.     {
  36.         passthru C_h =  "#include <DesktopAnimation.h>"
  37.                         "#include <Displays.h>";
  38.  
  39.         passthru C_xh = "#include <DesktopAnimation.h>"
  40.                         "#include <Displays.h>";
  41.         
  42.         
  43.         /* Release Order.  Note, only append to the end of this
  44.            list, so that the base class is forward compatible. */
  45.         releaseorder:    Initialize, Close;
  46.     };
  47. #endif
  48. };
  49.  
  50. #endif
  51.